home *** CD-ROM | disk | FTP | other *** search
/ Inside Indy 1993 / Inside Indy 1993.iso / scripts / startcase < prev    next >
Text File  |  1993-06-23  |  267b  |  18 lines

  1. #!/bin/sh
  2. # ../scripts/start*
  3. # starting from CDROM/slides directory
  4. #
  5. PATH=/bin:/usr/bin:/usr/sbin
  6. INDYDEMODIR=WorkShop
  7. RUNDEMO="startcasedemo"
  8. #change to  demo dir
  9. savedir=`pwd`
  10. cd ../demos/$INDYDEMODIR
  11.  
  12. ./$RUNDEMO
  13.  
  14. #change back to original dir
  15. cd $savedir
  16.  
  17. exit 0
  18.